projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c76c6e7
)
(set_case_table): Make canon table point to eqv table.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 6 Sep 2002 16:46:08 +0000
(16:46 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 6 Sep 2002 16:46:08 +0000
(16:46 +0000)
src/ChangeLog
patch
|
blob
|
history
src/casetab.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index d68ddfb35afa9a979570a02a751519673eacb605..410e537a52400c13e671e6ed04a3213c57f7264e 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2002-09-06 Richard M. Stallman <rms@gnu.org>
+
+ * casetab.c (set_case_table): Make canon table point to eqv table.
+
2002-09-06 Juanma Barranquero <lektu@terra.es>
* coding.c (syms_of_coding): Fix spacing.
diff --git
a/src/casetab.c
b/src/casetab.c
index de504e2e3352074baf8eefe0ea7cd4441b4dfa13..6056af54682d61d1ff56eb5be8580e4d680941b8 100644
(file)
--- a/
src/casetab.c
+++ b/
src/casetab.c
@@
-158,6
+158,9
@@
set_case_table (table, standard)
XCHAR_TABLE (table)->extras[2] = eqv;
}
+ /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
+ XCHAR_TABLE (canon)->extras[2] = eqv;
+
if (standard)
Vascii_downcase_table = table;
else